SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

Day 100

Day 100

1 認識元件

1 認識元件

[5] 測試是一門學問,關於自動化測試

[5] 測試是一門學問,關於自動化測試






留言討論